Skip to content

Instantly share code, notes, and snippets.

@zchee
zchee / download_macos_and_create_install_disk.sh
Created June 13, 2021 15:39 — forked from niw/download_macos_and_create_install_disk.sh
A script to download macOS install image and create an install disk image
#!/usr/bin/env bash
set -e
VOLUME_PATH=/Volumes/installer
while getopts ":d:h" opts; do
case $opts in
d)
VOLUME_PATH=$OPTARG
;;

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@gnat
gnat / mariadb_mysql_portable_no_install.md
Last active August 29, 2026 19:08
Portable Database - Standalone MariaDB and MySQL zero install.

Database Standalone Quickstart

🐬 = MySQL 8
🦭 = MariaDB

Why?

  • Localize your database into one single folder of your choosing.
  • No sudo / root requirement.
  • Run multiple database at the same time on the same machine- Full bare metal performance.
@mutin-sa
mutin-sa / Top_Public_Time_Servers.md
Last active August 29, 2026 19:07
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@angelo-swe
angelo-swe / repo-series.md
Last active August 29, 2026 19:05
The Repo List β€” every repo from my series, kept updated
@Sheepolution
Sheepolution / main.lua
Last active August 29, 2026 19:03
Basic Luasteam P2P example
local server = true -- Change to false for the client
local connectionId
local pollGroup
Steam = require "luasteam"
Steam.init()
-- We call this to let Steam know that we want to use the networking sockets API.
-- Which probably won't do much in this example, but it can save you a delay.
@fardjad
fardjad / taming-an-onyx-tablet.md
Last active August 29, 2026 18:58
[Taming an Onyx Tablet] The documented process of securing my Onyx Boox tablet #blog #onyx #boox

Taming an Onyx Tablet

Onyx tablets reportedly phone home and send "data" to some servers in China. The manufacturer apparently refuses to publish the source-code modifications to the OS and the open-source apps they are using and they even go as far as violating GPL.

Of course I learned all that after buying this tablet. To ease my mind, I spent some time debloating it and then blocked the outgoing traffic to

@aravindnc
aravindnc / Activate_Windows_8_8.1_10_and_11_Pro_for_Free.md
Created February 19, 2024 17:15
Activate Windows 8, 8.1, 10 and 11 Pro for Free

Activate Windows 8, 8.1, 10 and 11 Pro for Free

A guide how to get and activate Windows 8, 8.1, 10 and 11 Pro for free!

NOTE

If you see the Windows keyboard button in this guide; and you can't find it on your keyboard, you likely have/had Windows 10 which has the button . If you can't find that one, you likely have a PC that has been upgraded to Windows 8/8.1/10/11 from Windows 8.1/8/7/Vista/XP and other ones. If you have one of those, refer the Windows key button to as yours. A list of them is below:

Windows key buttons

- Windows 11

- Windows 10

@Amzi-01
Amzi-01 / FIveM_Enhanced_Edition_Linux.md
Last active August 29, 2026 18:46
FIveM_Enhanced_Edition_Linux.md

Getting FiveM for GTA V Enhanced running on Linux β€” the full story

A blow-by-blow of how we got the brand-new FiveM Enhanced launcher working under Bottles + Wine on Linux, including every wrong turn. This is a write-up, not the tool β€” the automated version lives in install.sh. Here we explain what we did, why, and where it hurt.

Reality check (read once): this got the launcher working. Joining anti-cheat-protected servers still fails β€” Cfx.re doesn't support Linux, and we did not bypass the anti-cheat. See the last chapter for exactly where the legitimate road ends.